home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / ANSWERS / CH03_1B.C < prev    next >
Text File  |  1994-05-15  |  301b  |  28 lines

  1. main()
  2. {
  3. int index;
  4.  
  5.    index = 0;
  6.    while (index < 10) {
  7.       printf("John Q. Doe\n");
  8.       index = index + 1;
  9.    }
  10. }
  11.  
  12.  
  13.  
  14. /* Result of execution
  15.  
  16. John Q. Doe
  17. John Q. Doe
  18. John Q. Doe
  19. John Q. Doe
  20. John Q. Doe
  21. John Q. Doe
  22. John Q. Doe
  23. John Q. Doe
  24. John Q. Doe
  25. John Q. Doe
  26.  
  27. */
  28.